home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / l_rmnd17.zip / REMIND.BAT < prev   
DOS Batch File  |  1990-03-01  |  872b  |  22 lines

  1. echo off
  2. rem REMIND.BAT
  3. rem ╔═════════════════════════════════════════════════════════════════════════╗
  4. rem ║ Note:  The "/i:7" in the command below will trigger the reminder every  ║
  5. rem ║ 7 days.  To trigger a reminder based on the day of the week, the day of ║
  6. rem ║ the month, or at a different interval see the documentation file        ║
  7. rem ║ lcg_rmnd.doc for the appropriate command line switches.                 ║
  8. rem ╚═════════════════════════════════════════════════════════════════════════╝
  9. rem
  10. lcg_rmnd /i:7
  11. if errorlevel 3 goto :NOBACK
  12. if not errorlevel 2 goto :NOBACK
  13. echo -------------------
  14. echo Beginning backup...
  15. rem ╔════════════════════════════════════════╗
  16. rem ║ INSERT YOUR DISK BACK-UP COMMANDS HERE ║
  17. rem ╚════════════════════════════════════════╝
  18. lcg_rmnd /reset
  19. echo -------------------
  20. :NOBACK
  21. echo Done with REMIND.BAT.
  22.